/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

/* Font for decorative elements */
.font-geist-mono {
    font-family: monospace;
}

/* Timeline styling */
.timeline-container {
    position: relative;
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: relative;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 2rem);
    background-color: #e5e7eb;
    z-index: -1;
}

.timeline-item:last-child .timeline-dot::after {
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-header, .timeline-item {
        font-size: 0.875rem;
    }
}
